2bdaa2b5976a244bb89b21765f17922e2c5a7cb9,src/de/willuhn/jameica/hbci/server/SepaDauerauftragImpl.java,SepaDauerauftragImpl,insertCheck,#,75
Before Change
if (StringUtils.trimToNull(getGegenkontoBLZ()) == null)
setGegenkontoBLZ(iban.getBIC());
if (StringUtils.trimToNull(getGegenkontoBLZ()) == null)
throw new ApplicationException(i18n.tr("Bitte geben Sie die BIC des Gegenkontos ein"));
HBCIProperties.checkBIC(getGegenkontoBLZ());
//
//////////////////////////////////////
After Change
if (iban != null && StringUtils.trimToNull(getGegenkontoBLZ()) == null)
setGegenkontoBLZ(iban.getBIC());
if (StringUtils.trimToNull(getGegenkontoBLZ()) != null)
HBCIProperties.checkBIC(getGegenkontoBLZ());
//
//////////////////////////////////////